From ce5b51b017a1f615098c4b325ac510571f3ce8e1 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Fri, 8 May 2020 01:24:48 -0400 Subject: [PATCH] flowboxchild: Fix accessible implementation Now that GtkFlowBoxChild is no longer a container, update the accessible implementation to match. --- gtk/a11y/gtkflowboxchildaccessible.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gtk/a11y/gtkflowboxchildaccessible.h b/gtk/a11y/gtkflowboxchildaccessible.h index 1e11b355c2..c010ffe25d 100644 --- a/gtk/a11y/gtkflowboxchildaccessible.h +++ b/gtk/a11y/gtkflowboxchildaccessible.h @@ -22,7 +22,7 @@ #error "Only can be included directly." #endif -#include +#include G_BEGIN_DECLS @@ -38,12 +38,12 @@ typedef struct _GtkFlowBoxChildAccessibleClass GtkFlowBoxChildAccessibleClass; struct _GtkFlowBoxChildAccessible { - GtkContainerAccessible parent; + GtkWidgetAccessible parent; }; struct _GtkFlowBoxChildAccessibleClass { - GtkContainerAccessibleClass parent_class; + GtkWidgetAccessibleClass parent_class; }; GDK_AVAILABLE_IN_ALL -- 2.30.2